www.facebook.com/insights

David Anson Brown: 1405986766
3c-christianity.com: 

Based on the raw tags, we constructed the following Open Graph properties.


fb:app_id  
og:url http://www.3c-christianity.com/ 
og:type website 
og:title 3C Christianity 
og:description 3c-christianity.com - Christianity for Christians 
og:image  


-- 

Tutorial: Integrate your Website with Facebook's Open Graph & Social Plugins

http://www.hyperarts.com/blog/tutorial-integrate-your-website-with-facebooks-open-graph-social-plugins/

<html xmlns="http://www.w3.org/1999/xhtml"
 xmlns:og="http://ogp.me/ns#"
 xmlns:fb="http://www.facebook.com/2008/fbml">

The required Open Graph tags are:
fb:app_id This is the numeric value provided when you created your Facebook app;
fb:admins Numeric Facebook User IDs. Separate multiple IDs with commas if you want more than one user to access Insights. (See feature box, below);
og:title The title of your page/object as it should appear within the graph, e.g. My Page Title;
og:type The type of your object, e.g., movie. Heres a complete list of supported og types;
og:image The full URL to the image to represent your object within the graph. It must be at least 50px by 50px, have a maximum aspect ratio of 3:1, and be in either PNG, JPEG or GIF format. You can include multiple og:image tags to associate multiple images with your page;
og:url The full URL of the page on which the tag is added.

--

<head>
 <meta property="fb:app_id" content="YOUR-APP-ID" />
 <meta property="fb:admins" content="USER_ID,USER_ID"/>
 <meta property="og:title" content="Page Title"/>
 <meta property="og:type" content="TYPE"/>
 <meta property="og:url" content="http://www.mydomain.com/page-url"/>
 <meta property="og:image" content="http://URL-TO-IMAGE"/>
 <meta property="og:description" content="Description of page content" />
 ...
 </head>

Step 3: Add the Like Button or other Social Plugins to your Website Pages

Facebooks Social Plugins integrate your website with Facebook, once you have created a Facebook application for your website to make it an object in the Open Graph.

First, as mentioned earlier, you must add a call to the JavaScript SDK, if you use the XFBML/HTML5 version of the social plugin (which I recommend).

You will add the below code right after the opening <body> tag on each Web page.

<div id="fb-root"></div><script>(function(d, s, id) {
 var js, fjs = d.getElementsByTagName(s)[0];
 if (d.getElementById(id)) {return;}
 js = d.createElement(s); js.id = id;
 js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=YOUR-APP-ID";
 fjs.parentNode.insertBefore(js, fjs);
 }(document, 'script', 'facebook-jssdk'));</script>


